home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / cat.doc < prev    next >
Text File  |  1980-01-01  |  512b  |  16 lines

  1. CAT
  2.  
  3. Purpose
  4. concatenate files
  5.  
  6. Syntax
  7. cat [file...]
  8.  
  9. Comments
  10. Cat can be used both to combine several files and to view files.  The
  11. contents of the specified files are written to the standard output.  If
  12. no files are specified, or when a file named "-" is encountered, the
  13. standard input is used.  If the input is from the keyboard, carriage
  14. returns are added to the newline character at the end of each line. 
  15.  
  16.